feat: add /orchestrate — structured workflow orchestration#53
Closed
robotmem wants to merge 1 commit intogarrytan:mainfrom
Closed
feat: add /orchestrate — structured workflow orchestration#53robotmem wants to merge 1 commit intogarrytan:mainfrom
robotmem wants to merge 1 commit intogarrytan:mainfrom
Conversation
One command runs the full lifecycle: triage → plan → plan review → execute → code review → QA → ship → retro. Chains existing gstack skills (/plan-ceo-review, /plan-eng-review, /review, /qa, /ship, /retro) into a disciplined pipeline with phase gates and rejection loops. Key features: - Phase 1 Triage: classify task type + scope assessment (reuses /plan-ceo-review's EXPAND/HOLD/REDUCE modes) - Phase 2 Plan: /plan-ceo-review → /plan-eng-review → user confirms - Phase 3 Plan Review: roundtable gate with 3 named engineering experts (Linus Torvalds, Bryan Cantrill, Martin Fowler) - Phase 4 Execute: write code within approved scope - Phase 5 Code Review: /review with VALID/FIXED/FP classification - Phase 6 QA: /qa with mode selection based on scope - Phase 7 Ship: /ship automated release - Phase 8 Retro: /retro (optional) Zero changes to existing skills. One new directory, one file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/orchestrateskill that chains existing gstack skills into a structured pipelineorchestrate/), one file (SKILL.md)What it does
/orchestrate "add user authentication"runs an 8-phase pipeline:/plan-ceo-review→/plan-eng-review/review/qa/ship/retroKey design decisions
/plan-ceo-review's SCOPE EXPANSION / HOLD SCOPE / SCOPE REDUCTION/review's VALID / ALREADY FIXED / FALSE POSITIVE classification. Only VALID issues trigger rejectionTest plan
/orchestrate "add a feature"runs the full pipeline/orchestrate --from plan "task"resumes from Phase 2/orchestrate --skip-retro "task"skips Phase 8🤖 Generated with Claude Code